home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / snip9_91.arc / PLAYDEMO.C < prev    next >
C/C++ Source or Header  |  1991-09-17  |  748b  |  36 lines

  1. /*
  2. **  PLAYDEMO.C - demo of background music functions
  3. */
  4.  
  5. #include <stdio.h>
  6. #include "uclock.h"
  7. #include "sound.h"
  8.  
  9. main()
  10. {
  11.       int i;
  12.  
  13.       if (!playb_open(1024))
  14.       {
  15.             puts("\aError opening play buffer");
  16.             return -1;
  17.       }
  18.       playb_note(C3, 8);
  19.       playb_note(REST, 2);
  20.       playb_note(C3, 8);
  21.       playb_note(REST, 2);
  22.       playb_note(E3, 8);
  23.       playb_note(REST, 2);
  24.       playb_note(E3, 8);
  25.       playb_note(REST, 2);
  26.       playb_note(G3, 8);
  27.       playb_note(REST, 2);
  28.       playb_note(G3, 8);
  29.       playb_note(REST, 2);
  30.       playb_note(E3, 18);
  31.       playb_note(REST, 2);
  32.       for (i = 0; i < 500; ++i)
  33.             printf("i = %d\n", i);
  34.       playb_close();
  35. }
  36.